home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / gas_251.zip / bin_251 / bfd / i386aout.c < prev    next >
C/C++ Source or Header  |  1994-07-12  |  2KB  |  69 lines

  1. /* BFD back-end for i386 a.out binaries.
  2.    Copyright 1990, 1991, 1992 Free Software Foundation, Inc.
  3.  
  4. This file is part of BFD, the Binary File Descriptor library.
  5.  
  6. This program is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2 of the License, or
  9. (at your option) any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20.  
  21. /* The only 386 aout system we have here is GO32 from DJ. 
  22.    These numbers make BFD work with that. If your aout 386 system
  23.    doesn't work with these, we'll have to split them into different
  24.    files.  Send me (sac@cygnus.com) the runes to make it work on your
  25.    system, and I'll stick it in for the next release.  */
  26.  
  27. #define N_HEADER_IN_TEXT(x) 0
  28. #define BYTES_IN_WORD 4
  29.  
  30. #define N_TXTOFF(x) 0x20
  31. #define N_TXTADDR(x) (N_MAGIC(x)==ZMAGIC ? 0x1020 : 0)
  32.  
  33. #define N_TXTSIZE(x) ((x).a_text)
  34. #if 0
  35. #define N_DATADDR(x) (N_MAGIC(x)==OMAGIC? (N_TXTADDR(x)+(x).a_text) : (SEGMENT_SIZE + ((0x1020+(x).a_text-1) & ~(SEGMENT_SIZE-1))))
  36. #define NOSUBEXECB
  37.  
  38. #endif
  39. #define PAGE_SIZE 4096
  40. #define SEGMENT_SIZE 0x400000
  41. #define DEFAULT_ARCH bfd_arch_i386
  42.  
  43. #define MY(OP) CAT(i386aout_,OP)
  44. #define TARGETNAME "a.out-i386"
  45. #define NO_WRITE_HEADER_KLUDGE 1
  46.  
  47. #include "bfd.h"
  48. #include "sysdep.h"
  49. #include "libbfd.h"
  50. #include "libaout.h"
  51. static boolean MY(set_sizes)();
  52. #define MY_backend_data &MY(backend_data)
  53. static CONST struct aout_backend_data MY(backend_data) = {
  54.   0,                /* zmagic contiguous */
  55.   1,                /* text incl header */
  56.   0,                /* exec_hdr_flags */
  57.   0,                /* text vma? */
  58.   MY(set_sizes),
  59.   1,                /* exec header not counted */
  60.   0,                /* add_dynamic_symbols */
  61.   0,                /* add_one_symbol */
  62.   0,                /* link_dynamic_object */
  63.   0,                /* write_dynamic_symbol */
  64.   0,                /* check_dynamic_reloc */
  65.   0                /* finish_dynamic_link */
  66. };
  67.  
  68. #include "aout-target.h"
  69.